home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / alpha / dipc / dipc-0.000 / dipc-0 / dipc-0.15 / dipcd / dipc.c < prev    next >
C/C++ Source or Header  |  1996-06-16  |  353b  |  21 lines

  1. /*
  2.  * dipc.c
  3.  *
  4.  * part of dipcd source code
  5.  *
  6.  * Copyright (C) Kamran Karimi
  7.  */
  8.  
  9. #include <linux/unistd.h>
  10. #define __KERNEL__
  11. #include <linux/ipc.h> /* for DIPC */
  12. #undef __KERNEL__
  13.  
  14.  _syscall4(int,ipc,int,t,int,r,int,s,int *,u); 
  15.  
  16. /* this is the DIPC system call */ 
  17. int dipc(int first, int cmd, void *ptr)
  18. {
  19.  return ipc(DIPC, first, cmd, ptr);
  20.